home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E50.CC < prev    next >
C/C++ Source or Header  |  1991-04-21  |  277b  |  21 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_50()
  5. {
  6.   if (full())
  7.     return;
  8.   if (modrm > 0277)
  9.   {
  10.     // ffree st(i)
  11.     int i = modrm & 7;
  12.     st(i).tag = TW_E;
  13.   }
  14.   else
  15.   {
  16.     // fld m64real
  17.     top--;
  18.     r_mov((double *)get_modrm(), st());
  19.   }
  20. }
  21.